home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1997 April / Software of the Month Club 1997 April.iso / mac / Business / HTML Voc 1.7.1 ƒ / HTML Vocabulary 1.7.1 / HTML Vocabulary 1.7.1.rsrc / TEXT_1400_Lists.txt < prev    next >
Encoding:
Text File  |  1997-01-12  |  1.7 KB  |  51 lines

  1.  
  2. Lists    
  3.  
  4. There are three different list styles. All of them can include new lists.
  5.   ΓÇó  unordered list
  6.   2. ordered list
  7.   definition list
  8.      text, text, text
  9.  
  10. Unordered list    
  11.  
  12. <UL [TYPE=DISC|CIRCLE|SQUARE]>
  13. Stands for 'unordered list'. Starts a new unordered list. The bullet (ΓÇó) can be changed with TYPE, between DISC (ΓÇó), CIRCLE (┬░) and SQUARE (Γé¼). Must end with </UL>
  14.  
  15. <LI [TYPE=DISC|CIRCLE|SQUARE]>
  16. Stands for 'list insert' or 'list item'. Starts a new line. Use it inside a <UL> text. Must end with </LI>
  17.  
  18. Ordered list    
  19.  
  20. <OL [TYPE=A|a|I|i] [START=n]>
  21. Start a new ordered list in the same way as <UL>. TYPE changes the numbers in the front of the entries between A,B,C (A), a,b,c (a), I,II,III (I), i,ii,iii (i) and 1,2,3 (only <OL>). START starts the numeration at n. Must end with </OL>
  22.  
  23. <LI [TYPE=A|a|I|i]>
  24. Stands for 'list insert' or 'list item'. Works in the same way as in an unordered list. Must end with </LI>
  25.  
  26. Definition list    
  27.  
  28. <DL>
  29. Starts a defined list. Must end with </DL>
  30.  
  31. <DT>
  32. Stands for 'defined tag'. Insert a new 'header' in the list. The text shows up in bold. Must end with </DT>
  33.  
  34. <DD>
  35. Use it to display normal text in a new line inside the list. Must end with </DD>
  36.  
  37. Menu list    
  38.  
  39. There are also two other tags which look the same as a list. These are often used in ftp-pages, but aren't supported in all browsers.
  40.  
  41. <MENU [DINGBAT=text] [CLEAR=align]>
  42. Starts the new menu list. DINGBAT is the name of an icon which will start the line. Can be "text.document", an icon of a small text file, "no" which is no dingbat at all, or about 30 others.
  43.  
  44. Directory list    
  45.  
  46. <DIR>
  47. About the same use as <UL>. Must end with </DIR>.
  48.  
  49. <LI>
  50. Start tag for a new list item inside the directory list. Must end with </LI>.
  51.